| Value | Meaning |
|---|---|
| invalid | |
| connect @(NetBinding!(void, void)) | Send that message so NetController can identify that a network connection was established. |
| disconnect @(NetBinding!(void, void)) | Send that message so NetController can identify that a network interface was disconnected |
| get_connected_clients @(NetBinding!(void, ConnectedClientsResponse)) | Sends a message to the server requesting for the available connection IDs |
| client_connect @(NetBinding!(uint, ConnectToClientResponse)) | The ID to connect to. Must be a valid ID received from get_connected_clients |
send_get_connected_clients(INetwork)
send_client_connect(INetwork, uint targetID)
Those are the reserved type IDs that are found in every MarkNetData instance. Since a new instance of this enum is created, the reserved types are written snake-cased. Custom type members will have the exact same name as the type they intend to use.
connect: void send_connect(INetwork) disconnect: void send_disconnect(INetwork)